type net.canceledError

4 uses

	net (current package)
		net.go#L434: 	errCanceled         = canceledError{}
		net.go#L440: type canceledError struct{}
		net.go#L442: func (canceledError) Error() string { return "operation was canceled" }
		net.go#L444: func (canceledError) Is(err error) bool { return err == context.Canceled }